.nav_links li, .nav_links a {
    font-weight: 500;
    font-size: 16px;
    color: white;
    text-decoration: none;
  
  }
  

  header {
    z-index: 100;
    background-color: rgb(0, 7, 44);
    position:sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    margin-bottom: 2%;
  }
  
  .logo {
    cursor: pointer;
  }
  
  .nav_links {
    list-style: none;
  }
  
  .nav_links li {
    display: inline-block;
    padding: 0px 20px;
  }
  
  .nav_links li a {
    transition: all 0.3s ease 0s;
  }
  
  .nav_links li a:hover {
    color: red;
  }
  